home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdi36962.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  7. #      Erik Anderson <eanders@carmichaelsecurity.com>
  8. #      Fixed broken link
  9. #
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(10974);
  15.  script_bugtraq_id(703);
  16.  script_version("$Revision: 1.5 $");
  17.  script_cve_id("CVE-1999-0161");
  18.  
  19.  name["english"] = "CSCdi36962";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24.  
  25. The remote seems to be vulnerable to a flaw in IOS when
  26. the keyword 'tacacs-ds' or 'tacacs' is being used in
  27. extended ACLs.
  28.  
  29. This bug can, under very specific circumstances and only with
  30. certain IP host implementations, allow unauthorized packets to
  31. circumvent a filtering router.
  32.  
  33. This vulnerability is documented as Cisco Bug ID CSCdi36962.
  34.  
  35. Solution : http://www.cisco.com/warp/public/707/1.html
  36. Risk factor : High
  37.  
  38. *** As Nessus solely relied on the banner of the remote host
  39. *** this might be a false positive
  40. ";
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  script_copyright(english:"This script is (C) 2002 Renaud Deraison");
  49.  
  50.  script_family(english:"CISCO");
  51.  
  52.  script_dependencie("snmp_sysDesc.nasl",
  53.              "snmp_cisco_type.nasl");
  54.  script_require_keys("SNMP/community",
  55.               "SNMP/sysDesc",
  56.               "CISCO/model");
  57.  exit(0);
  58. }
  59.  
  60.  
  61. # The code starts here
  62. ok=0;
  63. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  64. hardware = get_kb_item("CISCO/model"); if(!hardware)exit(0);
  65.  
  66.  
  67.  
  68.  
  69. # Check for the required operating system...
  70. #----------------------------------------------------------------
  71. # Is this IOS ?
  72. if(!egrep(pattern:".*(Internetwork Operating|IOS).*", string:os))exit(0);
  73. # 10.3
  74. if(egrep(string:os, pattern:"(10\.3\([0-4]\)|10\.3),"))ok=1;
  75.  
  76.  
  77. #----------------------------------------------
  78.  
  79. if(ok)security_hole(port:161, proto:"udp");
  80.